home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
mint
/
distri~1
/
updates
/
incobj30.zoo
/
level30.zoo
/
usr
/
include
/
times.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-02-10
|
446 b
|
34 lines
/* structure for the times() system call */
#ifndef _TIMES_H
#define _TIMES_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifndef _TIME_T
#define _TIME_T long
typedef _TIME_T time_t;
#endif /* _TIME_T */
struct tms {
time_t tms_utime;
time_t tms_stime;
time_t tms_cutime;
time_t tms_cstime;
};
__EXTERN long times __PROTO((struct tms *));
#ifdef __cplusplus
}
#endif
#endif /* _TIMES_H */